@media screen{
    .main-section{
        min-height:calc(100vh - 82px - 104px)
    }
}


/* خلفية التخرج */
.overlay{
    background-size: cover;
    background-color: white;
    opacity: 0.7;
    left: 0px;
}
.overlay2{
    background-size:contain;
    background-color: white;
    opacity: 0.6;
    left: 0px;
}

a:hover{
    text-decoration: none;
}
/* مؤشر الماوس */
.cursor-pointer{
    cursor: pointer;
}

/* start my-data-table */
.table-layer{
    z-index: 2;
    opacity: 0.4;
}
.table-responsive{
    white-space: nowrap;
}
thead tr th{
    background-color: #003a72!important;
    
}
td, th{
    text-align: center!important;
    vertical-align: middle!important;
}
.td-width-75-150{
    min-width:75px;
    max-width:150px;
    white-space: normal;
}

/* start to top scroll button */
#scroll-top{
    width: 40px;
    height: 40px;
    color: #ffc107;
    text-align: center;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 100;
    border: 3px solid #ffc107;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    display: none;
    
}
#scroll-top:hover{
    opacity: 1;
    background-color: #003a72;
    transition: all .2s ease-in-out;
}

/* end to top scroll button */

/* اخفاء اسهم الزيادة والنقصان */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
}
input[type=number] {
    /* Set some optional styles for the input field */
    appearance: none;
    -moz-appearance: textfield;
}

/* start scroll bar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
/* end scroll bar */

/* start footer social-media row */
.footer .social a{
    font-size: 26px;
    font-weight: bold;
    color: #ffc107;
    margin: 0px 2px 2px;
    text-decoration: none;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 1.7em;
    border: 3px solid #ffc107;
    transition: all .2s ease-in-out;
    border-radius: 50%;
}
.footer .social a:hover{
    background-color: #ffc107;
    color: white;
    border-radius: 4px;
}

.main-color{
    color: #003a72;
}
.main-color-h:hover{
    color: #003a72;
    transition: all .2s ease-in-out;
}

.main-bg-color{
    background-color: #003a72;
}
.main-bg-color-h:hover{
    background-color: #003a72 !important;
    transition: all .2s ease-in-out;
}

.second-color{
    color: #ffc107!important;
}
.second-color-h:hover{
    color: #ffc107!important;
    transition: all .2s ease-in-out;
}
.white-color-h:hover{
    color: white!important;
    transition: all .2s ease-in-out;
}

/* Start tosatr js */
/* toast-success */
.toast-success .toast-progress {
    background-color: white;
    opacity: 1!important;
}

.toast-success{
    text-align: right;
    font-weight: bold;
    font-size: 16px;
    /* background-color: #003a72!important; */
    margin-top: 45px!important;
}
/* toast-error */
.toast-error .toast-progress {
    background-color: white;
    opacity: 1!important;
}

.toast-error{
    text-align: right;
    font-weight: bold;
    font-size: 16px;
    width: 340px!important;
    margin-top: 45px!important;
}
/* toast-warning */
.toast-info .toast-progress {
    background-color: white;
    opacity: 1!important;
}

.toast-info{
    text-align: right;
    font-weight: bold;
    font-size: 16px;
    width: 340px!important;
    margin-top: 45px!important;
}
/* end tosatr js */

/* end my-data-table */

/* end footer social-media row */

/* خلفية التخرج */
/* تأثير الانيميشن */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.zoomIn {
animation-name: zoomIn;
animation-duration: 1s;
}